home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / MODELMNT.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-13  |  159 b   |  7 lines

  1. // array.lib function mod_element()
  2. #include <stdio.h>
  3.  
  4. void mod_element(int element,int mod)
  5. {
  6.     printf("Value in mod_element is %d\n",element *= mod);
  7. }